home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Tutorial / Stepstone_Tutorial / Apple.h next >
Text File  |  1995-06-12  |  240b  |  14 lines

  1. // Apple.h
  2. #import "Fruit.h"
  3.  
  4. @interface Apple : Fruit
  5. {
  6.     char * flavor;  // additional instance variable
  7. }
  8. +create;
  9. -flavor:(char *)aFlavor;
  10. - (char *)flavor;
  11. - flavor:(char *)aFlavor diameter:(int)aSize color:(char *)aColor;
  12. - grow;
  13. @end
  14.